home *** CD-ROM | disk | FTP | other *** search
/ Delphi Magazine Collection 2001 / Delphi Magazine Collection 20001 (2001).iso / DISKS / Issue66 / Clinic / ScopeTest.dpr < prev    next >
Encoding:
Text File  |  2000-11-09  |  335 b   |  16 lines

  1. program ScopeTest;
  2.  
  3. uses
  4.   Forms,
  5.   ScopeTestMainForm in 'ScopeTestMainForm.pas' {MainForm},
  6.   ScopeTestOtherForm in 'ScopeTestOtherForm.pas' {OtherForm};
  7.  
  8. {$R *.RES}
  9.  
  10. begin
  11.   Application.Initialize;
  12.   Application.CreateForm(TMainForm, MainForm);
  13.   Application.CreateForm(TOtherForm, OtherForm);
  14.   Application.Run;
  15. end.
  16.